home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / Syn Text Editor 2.1.0.46 / synsetup-2.1.0.46.exe / {app} / templates / LaTeX / PDF Setup.tex < prev   
Text File  |  2003-04-10  |  2KB  |  42 lines

  1. %Description: Commands for PDF output|
  2. % Created: {$DateTime} by {$UserName}
  3.  
  4. \usepackage[pdftex, plainpages=false]{hyperref}
  5. \pdfoptionpdfminorversion=3             % pdf 1.3 (Acrobat 4)
  6. \pdfcompresslevel=9                     % Best compression
  7. \pdfinfo{                               % Info dictionary of PDF output;
  8.                                         % all keys are optional. 
  9.     /Author ({$UserName})
  10.     /CreationDate ({$DateTime})    % (D:YYYYMMDDhhmmss)
  11.                                         % YYYY  year
  12.                                         % MM    month
  13.                                         % DD    day
  14.                                         % hh    hour
  15.                                         % mm    minutes
  16.                                         % ss    seconds
  17.                                         %
  18.                                         % default: the actual date
  19.                                         %
  20.     /ModDate (\today)                   % ModDate is similar
  21.     /Title ({$FileTitleNoExt})                     %
  22.     /Subject (PdfSubject)              %
  23.     /Keywords (PdfKeywords)            %
  24. }
  25. \pdfcatalog{                            % Catalog dictionary of PDF output. 
  26.     /PageMode /UseOutlines              %
  27. }
  28. \usepackage{color}
  29. \definecolor{Blue}{rgb}{0,0,0.7}
  30. \definecolor{Red}{rgb}{0.8,0,0}
  31. \definecolor{Green}{rgb}{0,0.5,0}
  32. \hypersetup{%
  33.     colorlinks = true,
  34.     linktocpage = true,
  35.     linkcolor = Blue,
  36.     anchorcolor = Blue,
  37.     citecolor = Green,
  38.     menucolor = Blue,
  39.     pagecolor = Blue,
  40.     urlcolor = Red
  41. }
  42.